home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / comps / widgets / delphi10 / fexecbtn / fexctest.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-06-18  |  540 b   |  32 lines

  1. unit Fexctest;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Buttons, Fexecbtn;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     FileExecButton1: TFileExecButton;
  12.     procedure FileExecButton1Click(Sender: TObject);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. procedure TForm1.FileExecButton1Click(Sender: TObject);
  27. begin
  28.   FileExecButton1.ExecuteFile;
  29. end;
  30.  
  31. end.
  32.